home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / vrpt4headers.sql < prev    next >
Text File  |  2000-05-12  |  520b  |  18 lines

  1. CREATE OR REPLACE VIEW VRPT4HEADERS AS 
  2. SELECT 
  3. RPTNAMES.short_name,  
  4.  r1.header h1,  
  5.  r2.header h2,  
  6.  r3.header h3,  
  7.  r4.header h4  
  8. FROM  RPTNAMES, 
  9. RPTHEADERS r1, RPTHEADERS r2, RPTHEADERS r3, RPTHEADERS r4 
  10. WHERE   
  11. RPTNAMES.max_columns = 4 AND 
  12. r1.rptclass = 1 AND r2.rptclass = 2 AND  
  13. r3.rptclass = 3 AND r4.rptclass = 4 AND
  14. r1.report_indx = RPTNAMES.report_indx AND 
  15. r2.report_indx = RPTNAMES.report_indx AND
  16. r3.report_indx = RPTNAMES.report_indx AND
  17. r4.report_indx = RPTNAMES.report_indx 
  18. ;